home *** CD-ROM | disk | FTP | other *** search
- --- ./libguile/tags.h Mon Oct 19 23:46:53 1998
- +++ ../guile-1.3/./libguile/tags.h Tue Mar 23 14:59:28 1999
- @@ -277,7 +277,7 @@
-
-
- #define SCM_CELLP(x) (!SCM_NCELLP(x))
- -#define SCM_NCELLP(x) ((sizeof(scm_cell)-1) & (int)(x))
- +#define SCM_NCELLP(x) ((sizeof(scm_cell)-1) & (long)(x))
-
- /* See numbers.h for macros relating to immediate integers.
- */
- --- ./libguile/snarf.h Mon Oct 19 23:42:09 1998
- +++ ../guile-1.3/./libguile/snarf.h Tue Mar 23 14:29:42 1999
- @@ -109,6 +109,6 @@
- %%% C_NAME = scm_permanent_object (scm_intern0 (SCHEME_NAME)); SCM_SETCDR (C_NAME, init_val)
- #endif
-
- -#define SCM_CONST_LONG(C_NAME, SCHEME_NAME,VALUE) SCM_VCELL_INIT(C_NAME, SCHEME_NAME, scm_long2num(VALUE));
- +#define SCM_CONST_LONG(C_NAME, SCHEME_NAME,VALUE) SCM_VCELL_INIT(C_NAME, SCHEME_NAME, scm_long2num(VALUE))
-
- #endif /* LIBGUILE_SNARF_H */
- --- ./libguile/ports.h Mon Oct 19 23:36:31 1998
- +++ ../guile-1.3/./libguile/ports.h Tue Mar 23 14:21:22 1999
- @@ -198,6 +198,6 @@
- #ifdef GUILE_DEBUG
- extern SCM scm_pt_size SCM_P ((void));
- extern SCM scm_pt_member SCM_P ((SCM member));
- -#endif GUILE_DEBUG
- +#endif /* GUILE_DEBUG */
-
- #endif /* PORTSH */
- --- ./libguile/procprop.c Mon Oct 19 23:37:40 1998
- +++ ../guile-1.3/./libguile/procprop.c Tue Mar 23 15:02:30 1999
- @@ -54,6 +54,7 @@
-
- static SCM
- scm_i_procedure_arity (proc)
- + SCM proc;
- {
- int a = 0, o = 0, r = 0;
- loop:
- --- ./libguile/scmsigs.c Mon Oct 19 23:40:34 1998
- +++ ../guile-1.3/./libguile/scmsigs.c Tue Mar 23 15:16:45 1999
- @@ -210,8 +210,8 @@
- query_only = 1;
- else if (SCM_INUMP (handler))
- {
- - if (SCM_INUM (handler) == (int) SIG_DFL
- - || SCM_INUM (handler) == (int) SIG_IGN)
- + if (SCM_INUM (handler) == (long) SIG_DFL
- + || SCM_INUM (handler) == (long) SIG_IGN)
- {
- #ifdef HAVE_SIGACTION
- action.sa_handler = (SIGRETTYPE (*) (int)) SCM_INUM (handler);
- @@ -274,7 +274,7 @@
- orig_handlers[csig] = old_action;
- }
- if (old_action.sa_handler == SIG_DFL || old_action.sa_handler == SIG_IGN)
- - old_handler = SCM_MAKINUM ((int) old_action.sa_handler);
- + old_handler = SCM_MAKINUM ((long) old_action.sa_handler);
- SCM_ALLOW_INTS;
- return scm_cons (old_handler, SCM_MAKINUM (old_action.sa_flags));
- #else
- --- ./ltconfig Wed Jul 29 14:13:47 1998
- +++ ../guile-1.3/./ltconfig Mon Mar 22 16:33:16 1999
- @@ -802,7 +802,7 @@
- ;;
-
- irix5* | irix6*)
- - archive_cmds='$LD -shared -o $lib -soname $soname -set_version $verstring$libobjs'
- + archive_cmds='$LD -shared -o $lib -soname $soname -set_version $verstring$libobjs$deplibs'
- hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
- ;;
-
-